home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / inst_x.bat < prev    next >
DOS Batch File  |  1994-10-10  |  2KB  |  53 lines

  1. @ECHO OFF
  2. REM %1=DRIVE
  3. REM %2=DIRECTORY
  4. REM %3=SIZE NEEDED ON HARD DRIVE
  5. REM %4=CHAPTER #
  6. REM -----------------------------
  7. ECHO  
  8. ECHO ╔═════════════════════════════════════════════════════╗
  9. ECHO ║                                                     ║
  10. ECHO ║ PC Graphics Unleashed                               ║
  11. ECHO ║                                                     ║
  12. ECHO ║ CD-ROM Installation Program                         ║
  13. ECHO ║                                                     ║
  14. ECHO ╚═════════════════════════════════════════════════════╝
  15. ECHO  
  16. ECHO  
  17. ECHO ─────────────────────────────────────────────────────────────
  18. ECHO   The files for Appendix %4 will be installed to your %1
  19. ECHO   hard drive. You need at least %3 of free space.
  20. ECHO.
  21. ECHO.
  22. ECHO   If this is NOT what you want to do, press the Ctrl + C 
  23. ECHO   keys to stop this batch program.
  24. ECHO ─────────────────────────────────────────────────────────────
  25. ECHO  
  26. ECHO  
  27. ECHO  
  28. PAUSE Paused... press any key to continue the installation
  29. CLS
  30. ECHO  
  31. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  32. ECHO │ The software will now be installed to your %1 hard drive.             │
  33. ECHO │ You'll see a message telling you when the installation is finished.   │
  34. ECHO └───────────────────────────────────────────────────────────────────────┘
  35. IF EXIST C:\PCGU\nul GOTO COPYING
  36. MD C:\PCGU
  37. :COPYING
  38. MD C:\PCGU\%2
  39. XCOPY \%2\*.* %1\PCGU\%2
  40. CLS
  41. ECHO 
  42. ECHO  
  43. ECHO ═════════════════════════════════════════════════════════════════
  44. ECHO.
  45. ECHO   The installation of the Appendix %4 software is complete.
  46. ECHO   You'll find the files in the %1\PCGU\%2 directory. 
  47. ECHO.
  48. ECHO ═════════════════════════════════════════════════════════════════
  49. ECHO  
  50. ECHO  
  51. pause
  52. cls
  53.